html, body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.splash-dialog{
    position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    height: 100vh;
    width: 100vw;

    margin: 0;
    padding: 0;

    /* Outline was a stinker.. always showing up */
    border: none;
    outline: none;
}

.splash-dialog::backdrop{
    background-color: white;
}

/* Controls the amount of space from the top of the page */
.spacer{
    height: 10vh;
}

.logo{
    display: flex;
    flex-direction: column;
    align-items: center;
} 

/* Zero out Titles Spacing */
.logo h1{
    margin: 0;
    padding: 0;
}

#title-way-cool{
    font-family: "Cheese";
    font-size: clamp(2rem, 10vw, 6rem);
}

#title-hide-word{
    font-family: "Candy";
    font-size: clamp(2rem, 10vw, 6rem);
}

#heart-cross{
    width: 25%;
}